.modal {
  display: none;
  position: fixed;
  z-index: 1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.4);
}

.modal-content {
  background-color: #ffff;
  margin: 15% auto;
  padding: 18px;
  border: none;
  border-radius: 10px;
  width: 45%;
  position: relative;
}

.modal-logo {
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 16px;
  border-radius: 10px;
  width: 100px;
}

.close-button {
  color: #007bff;
  float: right;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
  position: absolute;
  top: 10px;
  right: 10px;
}

.close-button:hover,
.close-button:focus {
  color: black;
  text-decoration: none;
}

.buttonCont {
  display: flex;
  gap: 18px;
  padding-top: 20px;
}

#confirmButton {
  padding: 10px 20px;
  background-color: #007bff;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

#cancelButton {
  padding: 10px 20px;
  background-color: #007bff;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}
